home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / dbase / dmetd4fp.zip / READ.ME < prev    next >
Text File  |  1991-06-05  |  3KB  |  67 lines

  1. There is a set of high level UDF's that are being rewritten from COMET,  
  2. single port , to the new COMET-MP.  Check CompuSolve's BBS for release
  3. information.
  4.  
  5. These UDF's will include:
  6.  
  7.   1) HAYES modem commands/functions
  8.   2) Automated background CALL & ANSWER routines
  9.   3) UDF's to eliminate the CALL COMETMP WITH syntax
  10.  
  11. Thank you for purchasing COMET-MP!
  12.  
  13.  
  14. Release Notes
  15.  
  16.  ********************** COMET-MP Version 1.06 *******************
  17.  06/05/91
  18.     - New command INPUTB (B = Binary) added to make COMET return all
  19.       data from its receive buffer, including Binary 0's or NULLs.
  20.       The INPUT command always strips out any NULLs.
  21.       ENTRY:   <varC> = 'INPUTB #P,?????' + SPACE(cnt) [+ CHR(t) ]
  22.  
  23.     - New command OUTPUTB added to make COMET output all characters
  24.       without any outbound translation of CHR(255)'s to NULLs.  The
  25.       OUTPUT command considers a NULL to mark the end of <expC> and
  26.       hence will not output any binary 0's / NULLs.
  27.  
  28.       ENTRY:  <varC> = 'OUTPUTB #P,len,string'
  29.          #P = desired port #
  30.          len = length of string  ie. # characters to output
  31.          string = characters to output
  32.  
  33.       eg. OUTBCmd = 'OUTPUTB #2,11,12345' + CHR(0) + '67890'
  34.           CALL COMETMP WITH OUTBCmd
  35.  
  36.  
  37.  ********************** COMET-MP Version 1.05 *******************
  38.  05/22/91
  39.     - FIND command fixed.  With prior versions FIND could mess up some
  40.       internal receive buffer pointers if COM data was being received
  41.       while FIND was executing.
  42.     - AUTOLF command added. "AUTOLF 1" enables automatic line feed generation
  43.       for each CR received. "AUTOLF 0" disables auto linefeeds (the default).
  44.       This command will affect all received data, including ARECV capturing.
  45.  
  46.  ********************** COMET-MP Version 1.04 *******************
  47.  05/09/91
  48.     - New commands X1RECV and X1SEND added to support XModem-1K protocols.
  49.       These new commands use same syntax as XRECV & XSEND.
  50.       ie.  expC = "X1RECV filename"
  51.            CALL COMET WITH expC
  52.  
  53.     - MSTAT now requires only SPACE(18) as suggested in manual, whereas
  54.       code was looking for 20.
  55.  
  56.     - ONDCD & ONDONE gave syntax error "?," if:  "ONDCD #n" or "ONDONE #n"
  57.       v1.04 no longer requires comma when disabling these event traps
  58.  
  59.     - XOR|LRC commands added that calculate 1 byte longitudinal redundancy check
  60.       (LRC) for string.  Both commands perform the same thing.
  61.       format: <expC> = 'XOR string '   or   <expC> = 'LRC string '
  62.       The LRC character is calculated by consecutively XORing <expC> chars
  63.       beginning with the 1st character after "XOR " and ending with the
  64.       next to last character.  The last character is where COMET writes
  65.       the calculated LRC value.
  66.  
  67.